JavaScript Type Coercion Explained. What Happens When You Add Boolean and Number or String. Data Type Magic in JavaScript. Boolean Numbers and Strings Interaction Explained
Lets explain the Code: console . log ( true + 1 ); console . log ( true + "1" ); Step 1: console.log(true + 1…